home *** CD-ROM | disk | FTP | other *** search
- /* -*-objc-*- */
-
- /*
- $Header$
- $Author: dglattin $
- $Date$
- $Log$
- */
-
- #ifndef __CONFUSEMORE_H
- #define __CONFUSEMORE_H
-
- #include <SubClass1.h>
- #include <SubClass2.h>
- #include <SubClass3.h>
-
-
- @interface SubClass1 (Fifth_Test)
-
- - additionalMethod1; /* Intentional conflict. */
- - additionalMethod_2;
-
- @end
-
-
- @interface SubClass2 (Third_Test)
-
- - additionalMethod_1;
- - additionalMethod_2;
- - additionalMethod_3;
-
- @end
-
-
- @interface SubClass3 (Second_Test)
-
- + additionalClassMethodTwo;
- - additionalMethod_1a;
- - additionalMethod_2a;
-
- @end
-
-
- @interface SubClass1 (Sixth_Test)
-
- - additionalMethod_3;
-
- @end
-
-
- #endif
-